home *** CD-ROM | disk | FTP | other *** search
- #ifndef __ARROWPAIR__
- #define __ARROWPAIR__
-
- typedef void *ArrowPairRef;
-
- OSErr CreateArrowPair (Boolean upDown, Rect *arrowRect, Rect *backwardHotRect,
- Rect *forwardHotRect, ArrowPairRef *arrowPair);
- void DisposeArrowPair (ArrowPairRef arrowPair);
- void DrawArrowPair (ArrowPairRef arrowPair);
- short TrackArrowPair (ArrowPairRef arrowPair);
- void MoveArrowPair (ArrowPairRef arrowPair, Point botLeft);
- short TestArrowPairHotRect (ArrowPairRef arrowPair, Point where, Rect *hotRect,
- Boolean *enabled);
- void FlashArrowPair (ArrowPairRef arrowPair, short whichArrow);
- void EnableOrDisableArrowPair (ArrowPairRef arrowPair, short whichArrow, Boolean enable);
-
- #endif